home *** CD-ROM | disk | FTP | other *** search
/ The Macintosh Demo Applications CD / Apple-MacintoshDemoApplicationsCD-1.0-1992.iso / More Information / QuicKeys / For Programmers Only.sea / C Examples / SampleData.h < prev    next >
Text File  |  1991-06-22  |  1KB  |  36 lines

  1. /*************************
  2.     $Workfile$
  3.     $Revision$
  4.                             
  5.     QuicKeys sample extension key definition
  6.  
  7.     © 1990 CE Software, Inc.  All rights reserved.
  8.             
  9.     For QuicKeys 2 Extension Sample source code you have a royalty-free right
  10.     to include object code derived from this Sample source code in programs
  11.     that you develop.  You also have the right to use, distribute, and license
  12.     such programs to third parties without payment of any further license fees
  13.     to CE Software, Inc., so long as a copyright notice sufficient to protect
  14.     your copyright for your software in the United States or any other country;
  15.     is included in the graphic display of your software and on the labels
  16.     affixed to the media on which your software is distributed.
  17.  
  18.     WHEN    WHO        WHAT
  19. •••••
  20.     9/5        mkg        created file
  21. •••••
  22. */
  23.  
  24. /*
  25.  * structure of our key's data.
  26.  */
  27.  
  28. struct SampleData {
  29.     ExtensionDataHeader    hdr;
  30.     long                lWaitTime;        /* how long to wait before beeping */
  31. };
  32.  
  33. #ifndef __cplusplus
  34. typedef struct SampleData SampleData;
  35. #endif
  36.